home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Interactive CD Sampler / Microsoft Interactive CD Sampler.iso / DEMOS / C_Automp / AUTOTP / IMD.CST / 00009.ls < prev    next >
Encoding:
Text File  |  1996-07-16  |  301 b   |  13 lines

  1. on loadCast x,y
  2.   -- preloads cast into memory.
  3.   -- x - if x is a list then loads cast numbers in the list else x is starting range
  4.   -- y - ending range for preload of cast routine
  5.   if listP(x) then
  6.     repeat with z in x
  7.       preLoadCast z
  8.     end repeat
  9.   else
  10.     preLoadCast x,y
  11.   end if
  12. end
  13.